home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000066_news@columbia.edu_Fri Dec 8 22:56:54 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08284
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun>); Fri, 8 Dec 1995 17:57:03 -0500
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id RAA05729 for kermit.misc@watsun; Fri, 8 Dec 1995 17:56:59 -0500
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Hardware flow control
  8. Date: 8 Dec 1995 22:56:54 GMT
  9. Organization: Columbia University
  10. Lines: 25
  11. Message-Id: <4aafrm$5ir@apakabar.cc.columbia.edu>
  12. References: <4a7ond$cf9@ddi2.digital.net>
  13. Nntp-Posting-Host: watsun.cc.columbia.edu
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <4a7ond$cf9@ddi2.digital.net>,  <rripley@digital.net> wrote:
  17. : I'm using C-Kermit on a Silicon Graphics Indigo2. Does anyone know how
  18. : to get hardware flow control (RTS/CTS) turned on? Kermit won't let me
  19. : set it and the man page just says that RTS/CTS can be selected if the
  20. : computer and its operating system support it (and mine does). But there
  21. : is no SET FLOW RTS/CTS option in my Kermit.
  22. I verified the following:
  23.  
  24. At least as of IRIX 5.2, there is no API for RTS/CTS, so you can't SET
  25. FLOW RTS/CTS in the IRIX version of Kermit (maybe in IRIX 6.0 the
  26. situation is different, but I have no way of knowing).
  27.  
  28. Instead, tell C-Kermit to "set line /dev/ttyf00" or whatever the port
  29. number is.  The "f" signifies a device driver that uses RTS/CTS flow
  30. control.
  31.  
  32. But then, according to "man serial", you still need serial port hardware
  33. that can support this.  Evidently, SGI computers have all sorts of bizarre
  34. Macintosh-like serial ports that don't support the full range of EIA
  35. RS-232 (V.24) signals needed for asynchronous modem communication.  So if
  36. the port doesn't have RTS and CTS wires, then the hardware flow control
  37. driver isn't going to have much to work with...
  38.  
  39. - Frank